home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20041116-20060924 / 000210_fdc@columbia.edu_Fri Nov 11 16:42:58 2005.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Path: newsmaster.cc.columbia.edu!not-for-mail
  2. From: Frank da Cruz <fdc@columbia.edu>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: Kermit logging of a session
  5. Date: 11 Nov 2005 21:42:50 GMT
  6. Organization: Columbia University
  7. Lines: 36
  8. Message-ID: <slrndna42q.bsp.fdc@sesame.cc.columbia.edu>
  9. References: <00A4C8C2.0A6F5B37@SendSpamHere.ORG> <1131598748.832021.277940@g49g2000cwa.googlegroups.com> <00A4C98D.DB78424B@SendSpamHere.ORG> <00A4C99C.F64841E6@SendSpamHere.ORG> <slrndn9d6q.mjl.fdc@sesame.cc.columbia.edu> <00A4CA44.AFA80751@SendSpamHere.ORG>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: sesame.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1131745370 16683 128.59.59.56 (11 Nov 2005 21:42:50 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 11 Nov 2005 21:42:50 GMT
  15. User-Agent: slrn/0.9.8.0 (SunOS)
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15457
  17.  
  18. On 2005-11-11, VAXman-  @SendSpamHere.ORG <VAXman-@SendSpamHere.ORG> wrote:
  19. : In article <slrndn9d6q.mjl.fdc@sesame.cc.columbia.edu>,
  20. : Frank da Cruz <fdc@columbia.edu> writes:
  21. :>:
  22. :>: When I connect, I get what I'd expect from the "set terminal debug on" 
  23. :>: but the test.log file is always empty.
  24. :>:
  25. :>Wow, I never noticed that before.  You're right, when terminal debugging is
  26. :>on, the session log stops recording.  I'll have to look into that.
  27. :
  28. : CRAP!  I really need that... by Monday too.
  29. :
  30. I put up a new C-Kermit "daily" build, 8.0.212 Dev.05, that fixes this:
  31.  
  32.   http://www.columbia.edu/kermit/ckdaily.html
  33.  
  34. For now, it logs in debugging format if SET TERMINAL DEBUG is ON.  There are
  35. good arguments for doing it either way.  If somebody desperately needs to
  36. be able to save a raw session log while TERMINAL DEBUG is ON, I suppose I
  37. can add Yet Another SET Command for choosing.
  38.  
  39. It also has a small new feature.  Whenever you give a command that refers to
  40. a local file (can be wildcard), the local file specification is saved and
  41. can be recalled in a subsequent command (or even the same one) by typing
  42. Ctrl-K.  I realize it's not quite the same as EMACS- or Vi-style command-
  43. line editing, but that's not in the cards for Kermit for various reasons
  44. (size, portability, conflict with current functionality).  Example:
  45.  
  46.   directory ck[cuw]*.[cwh]
  47.   send ^K
  48.  
  49. The SEND command turns into "send ck[cuw]*.[cwh]".
  50.  
  51. The same filespec is also available in the new variable \v(lastfilespec).
  52.  
  53. - Frank